/* AI Agent Automation Hero Section */
.ai-hero-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0c0b0e 0%, #1a1a1f 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.ai-hero-section .hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.ai-hero-section .hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInLeft 1s ease-out;
}

.ai-hero-section .hero-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #C2FC0D;
    padding: 8px 20px;
    background: rgba(194, 252, 13, 0.1);
    border: 1px solid rgba(194, 252, 13, 0.2);
    border-radius: 25px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

.ai-hero-section .hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.ai-hero-section .hero-title .highlight {
    color: #C2FC0D;
    position: relative;
    display: inline-block;
}

.ai-hero-section .hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #C2FC0D;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.ai-hero-section .hero-title .highlight:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.ai-hero-section .hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    margin-bottom: 30px;
}

.ai-hero-section .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #C2FC0D;
    color: #0c0b0e;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ai-hero-section .btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ai-hero-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(194, 252, 13, 0.3);
}

.ai-hero-section .btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.ai-hero-section .btn-primary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.ai-hero-section .btn-primary:hover svg {
    transform: translateX(5px);
}

.ai-hero-section .hero-image {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease-out;
}

.ai-hero-section .ai-illustration {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    transform-style: preserve-3d;
    animation: floatPhone 6s ease-in-out infinite;
}

.ai-hero-section .ai-illustration img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: cover;
    object-position: center;
}

.ai-hero-section .ai-illustration:hover img {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatPhone {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ai-hero-section .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .ai-hero-section .hero-title {
        font-size: 42px;
    }
    
    .ai-hero-section .ai-illustration {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .ai-hero-section {
        padding: 80px 0;
    }
    
    .ai-hero-section .hero-title {
        font-size: 36px;
    }
    
    .ai-hero-section .hero-description {
        font-size: 16px;
    }
    
    .ai-hero-section .btn-primary {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .ai-hero-section .ai-illustration {
        max-width: 350px;
    }
}

@media (max-width: 576px) {
    .ai-hero-section {
        padding: 60px 0;
    }
    
    .ai-hero-section .hero-title {
        font-size: 32px;
    }
    
    .ai-hero-section .hero-tag {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .ai-hero-section .btn-primary {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .ai-hero-section .ai-illustration {
        max-width: 300px;
    }
}

/* High DPI Support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .ai-hero-section .ai-illustration img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print Styles */
@media print {
    .ai-hero-section {
        background: white;
        color: black;
        padding: 40px 0;
    }
    
    .ai-hero-section .hero-title {
        color: black;
        font-size: 32px;
    }
    
    .ai-hero-section .hero-title .highlight {
        color: black;
    }
    
    .ai-hero-section .hero-description {
        color: #333;
    }
    
    .ai-hero-section .btn-primary {
        display: none;
    }
    
    .ai-hero-section .ai-illustration {
        max-width: 300px;
    }
    
    .ai-hero-section .ai-illustration img {
        box-shadow: none;
        border: 1px solid #000;
    }
}
/* Service Overview Section */
.service-overview {
    padding: 80px 0;
    background: #0c0b0e;
    overflow: hidden;
    position: relative;
}

.service-overview-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.overview-left {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.overview-left h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.2;
}

.overview-left p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.feature-item i {
    font-size: 1.5rem;
    color: #C2FC0D;
}

.feature-item span {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.overview-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.service-image {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.service-image:hover img {
    transform: scale(1.02);
}

/* Background Grid */
.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-overview-content {
        gap: 40px;
    }
    
    .overview-left h2 {
        font-size: 3rem;
    }
    
    .service-features {
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .service-overview {
        padding: 60px 0;
    }
    
    .service-overview-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .overview-left {
        max-width: 100%;
    }
    
    .overview-left h2 {
        font-size: 2.5rem;
    }
    
    .overview-right {
        justify-content: center;
        width: 100%;
    }
    
    .service-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-item {
        justify-content: flex-start;
        text-align: left;
        padding: 1rem;
    }
    
    .feature-item i {
        margin-right: 1rem;
        margin-bottom: 0;
    }
    
    .feature-item span {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .service-overview {
        padding: 40px 0;
    }
    
    .overview-left h2 {
        font-size: 2rem;
    }
    
    .overview-left p {
        font-size: 1rem;
    }
    
    .service-features {
        gap: 0.75rem;
    }
    
    .feature-item {
        padding: 0.875rem;
    }
    
    .feature-item i {
        font-size: 1.25rem;
        margin-right: 0.75rem;
    }
    
    .feature-item span {
        font-size: 0.875rem;
    }
}
/* AI Assistant Demo Section */
.ai-assistant-demo {
    padding: 80px 0;
    background: linear-gradient(135deg, #0c0b0e 0%, #1a1a1f 100%);
    overflow: hidden;
    position: relative;
}

.demo-container {
    display: flex;
    gap: 40px;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

/* Chat Interface */
.chat-interface {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.chat-header {
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.ai-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4CAF50;
    position: relative;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.status-indicator.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

.status-text {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.demo-controls {
    display: flex;
    gap: 0.75rem;
}

.demo-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.demo-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.demo-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.demo-btn:hover::before {
    left: 100%;
}

.demo-btn i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.demo-btn:hover i {
    transform: translateX(3px);
}

/* Chat Messages */
.chat-messages {
    flex: 1;
    padding: 1.25rem;
    overflow-y: auto;
    max-height: 400px;
    background: rgba(255, 255, 255, 0.01);
    position: relative;
}

.message {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.5s ease forwards;
    position: relative;
}

.message-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.message-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.message-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    position: relative;
}

.message-content p {
    color: #ffffff;
    font-size: 0.875rem;
    line-height: 1.4;
    margin: 0;
}

.message-time {
    position: absolute;
    bottom: 0.5rem;
    right: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    font-weight: 500;
}

/* Chat Input */
.chat-input-container {
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.input-wrapper {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

#userInput {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

#userInput:focus {
    outline: none;
    border-color: rgba(76, 175, 80, 0.5);
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.send-btn {
    padding: 0.75rem;
    background: #4CAF50;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-btn:hover {
    background: #45a049;
    transform: scale(1.05);
}

.send-btn i {
    font-size: 1rem;
}

/* Typing Indicator */
.typing-indicator {
    display: none;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    margin: 0 auto;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(76, 175, 80, 0.3);
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

/* Demo Features */
.demo-features {
    flex: 0.8;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.demo-features h3 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.capability-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.capability-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.capability-card i {
    font-size: 1.25rem;
    color: #4CAF50;
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease;
}

.capability-card:hover i {
    transform: scale(1.1);
}

.capability-card h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.capability-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.4;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes typing {
    0%, 60%, 100% {
        transform: scale(0.5);
        opacity: 0.3;
    }
    30% {
        transform: scale(1);
        opacity: 0.6;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .demo-container {
        gap: 30px;
    }
    
    .features-grid {
        gap: 0.75rem;
    }
}

@media (max-width: 768px) {
    .ai-assistant-demo {
        padding: 60px 0;
    }
    
    .demo-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .chat-interface {
        max-width: 100%;
    }
    
    .demo-features {
        flex: 1;
        max-width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .capability-card {
        padding: 0.75rem;
    }
    
    .message-content {
        padding: 0.75rem;
    }
    
    .message {
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .chat-messages {
        padding: 0.75rem;
        max-height: 300px;
    }
}

@media (max-width: 576px) {
    .ai-assistant-demo {
        padding: 40px 0;
    }
    
    .demo-container {
        gap: 1.5rem;
    }
    
    .chat-header {
        padding: 1rem;
    }
    
    .chat-messages {
        padding: 0.75rem;
        max-height: 250px;
    }
    
    .message {
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .message-content {
        padding: 0.75rem;
    }
    
    .message-avatar {
        width: 40px;
        height: 40px;
    }
    
    .demo-features {
        padding: 1rem;
    }
    
    .capability-card {
        padding: 0.75rem;
    }
    
    .features-grid {
        gap: 0.5rem;
    }
    
    .demo-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
    
    #userInput {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .send-btn {
        padding: 0.5rem 0.75rem;
    }
    
    .typing-indicator span {
        width: 4px;
        height: 4px;
    }
}
/* AI Agent Applications Section */
.ai-agents-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0c0b0e 0%, #1a1a1f 100%);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #546e7a;
    max-width: 600px;
    margin: 0 auto;
}

.agents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.agent-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.agent-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.agent-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.agent-card:hover::before {
    transform: scaleX(1);
}

.agent-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
}

.agent-icon svg {
    width: 40px;
    height: 40px;
}

.agent-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.agent-card p {
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.6;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    color: #667eea;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .agents-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .agent-card {
        padding: 20px;
    }
}
/* Tech Showcase Section */
.tech-showcase {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #0c0b0e 0%, #1a1a1f 100%);
    overflow: hidden;
}

.tech-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.tech-badge {
    display: inline-block;
    background: rgba(194, 252, 13, 0.1);
    color: #C2FC0D;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(194, 252, 13, 0.2);
    position: relative;
    overflow: hidden;
}

.tech-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(194, 252, 13, 0.2), transparent);
    animation: slideIn 2s linear infinite;
}

.tech-title {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.1;
}

.tech-title .highlight {
    color: #C2FC0D;
    position: relative;
}

.tech-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #C2FC0D;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.tech-title .highlight:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.tech-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.tech-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.tech-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: max-content;
    justify-content: center;
}

.tech-track:hover {
    animation-play-state: paused;
}

.tech-item {
    flex: 0 0 auto;
    width: 320px;
    padding: 30px;
    margin-right: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.tech-item:hover {
    transform: translateY(-10px);
}

.tech-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    overflow: hidden;
}

.tech-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.tech-item:hover .tech-icon img {
    transform: scale(1.1);
}

.tech-info {
    text-align: center;
}

.tech-info h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.5s ease forwards;
    animation-delay: 0.1s;
}

.tech-info p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.5s ease forwards;
    animation-delay: 0.2s;
}

.tech-bg-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(194, 252, 13, 0.1) 0%, rgba(194, 252, 13, 0) 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(50px);
}

/* Animations */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes slideIn {
    from {
        left: -100%;
    }
    to {
        left: 100%;
    }
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tech-showcase {
        padding: 100px 0;
    }
    
    .tech-title {
        font-size: 48px;
    }
    
    .tech-item {
        width: 280px;
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .tech-showcase {
        padding: 80px 0;
    }
    
    .tech-title {
        font-size: 42px;
    }
    
    .tech-subtitle {
        font-size: 18px;
    }
    
    .tech-item {
        width: 260px;
        padding: 20px;
    }
    
    .tech-icon {
        width: 80px;
        height: 80px;
    }
    
    .tech-icon img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .tech-showcase {
        padding: 60px 0;
    }
    
    .tech-title {
        font-size: 36px;
    }
    
    .tech-badge {
        font-size: 12px;
        padding: 10px 24px;
    }
    
    .tech-item {
        width: 240px;
        padding: 15px;
    }
    
    .tech-icon {
        width: 70px;
        height: 70px;
    }
    
    .tech-icon img {
        width: 40px;
        height: 40px;
    }
    
    .tech-info h3 {
        font-size: 20px;
    }
    
    .tech-info p {
        font-size: 14px;
    }
}
.faq-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0c0b0e 0%, #1a1a1f 100%);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    background: rgba(194, 252, 13, 0.1);
    color: #C2FC0D;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(194, 252, 13, 0.2);
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(194, 252, 13, 0.2), transparent);
    animation: slideIn 2s linear infinite;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title .highlight {
    color: #C2FC0D;
    position: relative;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #C2FC0D;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.section-title .highlight:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.section-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.faq-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.faq-slider {
    position: relative;
    width: 100%;
    max-width: 800px;
    overflow: hidden;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
}

.faq-track {
    display: flex;
    transition: transform 0.3s ease;
}

.faq-item {
    min-width: 100%;
    padding: 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(194, 252, 13, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 20px;
    color: #ffffff;
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    border: none;
    background: rgba(194, 252, 13, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-toggle:hover {
    background: rgba(194, 252, 13, 0.2);
}

.faq-toggle svg {
    width: 16px;
    height: 16px;
    stroke: #C2FC0D;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle svg {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    margin-top: 20px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
}

.nav-button {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(194, 252, 13, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.nav-button:hover {
    background: rgba(194, 252, 13, 0.2);
    transform: scale(1.1);
}

.nav-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.nav-button svg {
    width: 20px;
    height: 20px;
    stroke: #C2FC0D;
}

@keyframes slideIn {
    from {
        left: -100%;
    }
    to {
        left: 100%;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .faq-container {
        padding: 0 15px;
    }
    
    .faq-question h3 {
        font-size: 18px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
}
/* Why Choose Us Section */
.why-choose-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0c0b0e 0%, #1a1a1f 100%);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    background: rgba(194, 252, 13, 0.1);
    color: #C2FC0D;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(194, 252, 13, 0.2);
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(194, 252, 13, 0.2), transparent);
    animation: slideIn 2s linear infinite;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title .highlight {
    color: #C2FC0D;
    position: relative;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #C2FC0D;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.section-title .highlight:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.section-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* FAQ Container */
.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* FAQ Items */
.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(194, 252, 13, 0.2);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-toggle:hover {
    background: rgba(194, 252, 13, 0.1);
}

.faq-toggle svg {
    width: 20px;
    height: 20px;
    stroke: #C2FC0D;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* AI Suggestion */
.ai-suggestion {
    background: rgba(194, 252, 13, 0.05);
    border-top: 1px solid rgba(194, 252, 13, 0.1);
    padding: 20px 30px;
    margin-top: 20px;
    border-radius: 0 0 15px 15px;
}

.ai-icon {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.ai-icon svg {
    width: 24px;
    height: 24px;
    stroke: #C2FC0D;
}

.ai-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #C2FC0D;
    margin-bottom: 10px;
}

.ai-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Animations */
@keyframes slideIn {
    from {
        left: -100%;
    }
    to {
        left: 100%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question h3 {
        font-size: 18px;
    }
    
    .faq-answer p {
        padding: 0 25px 20px;
        font-size: 15px;
    }
    
    .ai-suggestion {
        padding: 15px 25px;
    }
}
/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0c0b0e 0%, #1a1a1f 100%);
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.cta-title .highlight {
    color: #C2FC0D;
    position: relative;
    display: inline-block;
}

.cta-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #C2FC0D;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.cta-title .highlight:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.cta-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #C2FC0D;
    color: #0c0b0e;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(194, 252, 13, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(194, 252, 13, 0.4);
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.btn-secondary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-secondary:hover svg {
    transform: translateX(5px);
}

/* Background Grid */
.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .cta-subtitle {
        font-size: 18px;
        margin: 0 auto 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-subtitle {
        font-size: 16px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 28px;
        font-size: 16px;
    }
}
/* Zen AI Showcase Section */
.zen-ai-showcase {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--darker-bg) 0%, rgba(12, 11, 14, 0.95) 100%);
    overflow: hidden;
}

.zen-showcase-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Zen Icon Base Styles */
.zen-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Zen Chat Panel */
.zen-chat-panel {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(154, 203, 33, 0.1);
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.zen-chat-header {
    padding: 1.5rem;
    background: rgba(154, 203, 33, 0.05);
    border-bottom: 1px solid rgba(154, 203, 33, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.zen-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.zen-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(220, 53, 69, 0.5);
    transition: all 0.3s ease;
    position: relative;
}

.zen-indicator.active {
    background: #9ACB21;
    box-shadow: 0 0 20px rgba(154, 203, 33, 0.6);
    animation: pulse 2s infinite;
}

.zen-status-text {
    color: var(--light-text);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.zen-controls {
    display: flex;
    gap: 0.75rem;
}

.zen-btn {
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.zen-btn .zen-icon {
    width: 16px;
    height: 16px;
}

.zen-btn.primary {
    background: linear-gradient(135deg, #9ACB21 0%, #8AB31F 100%);
    color: var(--darker-bg);
}

.zen-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--light-text);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.zen-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Zen Messages */
.zen-messages {
    padding: 1.5rem;
    height: 400px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.zen-message {
    display: flex;
    gap: 0.875rem;
    animation: slideIn 0.4s ease;
}

.zen-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(154, 203, 33, 0.2);
}

.zen-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zen-message-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.25rem;
    border-radius: 16px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.zen-message-content p {
    margin: 0;
    color: var(--light-text);
    font-size: 0.925rem;
    line-height: 1.6;
}

.zen-message-time {
    font-size: 0.75rem;
    color: var(--muted-text);
    margin-top: 0.625rem;
    opacity: 0.8;
}

/* Zen Input Area */
.zen-input-area {
    padding: 1.5rem;
    border-top: 1px solid rgba(154, 203, 33, 0.1);
    background: rgba(154, 203, 33, 0.02);
}

.zen-input-wrapper {
    display: flex;
    gap: 0.875rem;
    align-items: center;
}

.zen-input-wrapper input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--light-text);
    font-size: 0.925rem;
    transition: all 0.3s ease;
}

.zen-input-wrapper input:focus {
    outline: none;
    border-color: #9ACB21;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(154, 203, 33, 0.1);
}

.zen-send-btn {
    padding: 0.875rem;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #9ACB21 0%, #8AB31F 100%);
    color: var(--darker-bg);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zen-send-btn .zen-icon {
    width: 20px;
    height: 20px;
    stroke: var(--darker-bg);
}

.zen-send-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(154, 203, 33, 0.3);
}

/* Zen Typing Indicator */
.zen-typing {
    display: none;
    align-items: center;
    gap: 0.375rem;
    padding: 0.875rem 1.25rem;
    margin-top: 0.625rem;
}

.zen-typing.active {
    display: flex;
}

.zen-typing span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #9ACB21;
    animation: typing 1.4s infinite;
}

.zen-typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.zen-typing span:nth-child(3) {
    animation-delay: 0.4s;
}

/* Zen Features */
.zen-features {
    padding: 2rem;
}

.zen-features-title {
    color: var(--light-text);
    font-size: 1.75rem;
    margin-bottom: 2rem;
    font-weight: 600;
    position: relative;
    padding-left: 1rem;
}

.zen-features-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(to bottom, #9ACB21, transparent);
    border-radius: 2px;
}

.zen-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.zen-feature-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.75rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.zen-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, #9ACB21, transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.zen-feature-card:hover::before {
    transform: scaleX(1);
}

.zen-feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(154, 203, 33, 0.2);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.zen-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(154, 203, 33, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
    position: relative;
}

.zen-feature-icon .zen-icon {
    width: 24px;
    height: 24px;
    stroke: #9ACB21;
}

.zen-feature-card:hover .zen-feature-icon {
    background: rgba(154, 203, 33, 0.2);
    transform: scale(1.05);
}

.zen-feature-card:hover .zen-icon {
    stroke: #8AB31F;
}

.zen-feature-card h4 {
    color: var(--light-text);
    font-size: 1.125rem;
    margin-bottom: 0.625rem;
    font-weight: 600;
}

.zen-feature-card p {
    color: var(--muted-text);
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Background Grid */
.zen-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(154, 203, 33, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(154, 203, 33, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
    pointer-events: none;
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(154, 203, 33, 0.6);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(154, 203, 33, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(154, 203, 33, 0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .zen-showcase-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .zen-messages {
        height: 300px;
    }
    
    .zen-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .zen-ai-showcase {
        padding: 3rem 0;
    }
    
    .zen-features-grid {
        grid-template-columns: 1fr;
    }
    
    .zen-features {
        padding: 1rem;
    }
    
    .zen-chat-panel {
        border-radius: 16px;
    }
    
    .zen-message-content {
        padding: 0.875rem 1rem;
    }
    
    .zen-input-wrapper input {
        padding: 0.75rem 1rem;
    }
}
